home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / org / flintparticles / renderers / Renderer.as < prev   
Encoding:
Text File  |  2011-10-17  |  337 b   |  16 lines

  1. package org.flintparticles.renderers
  2. {
  3.    import org.flintparticles.particles.Particle;
  4.    
  5.    public interface Renderer
  6.    {
  7.        
  8.       
  9.       function renderParticles(param1:Array) : void;
  10.       
  11.       function removeParticle(param1:Particle) : void;
  12.       
  13.       function addParticle(param1:Particle) : void;
  14.    }
  15. }
  16.